
R version 2.15.1 (2012-06-22) -- "Roasted Marshmallows"
Copyright (C) 2012 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
Platform: x86_64-pc-mingw32/x64 (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

  Natural language support but running in an English locale

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> nes<-read.csv("anes2008.csv")
> summary(nes$welfareppl)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
   0.00   40.00   50.00   56.73   70.00  100.00     276 
> summary(nes$poorppl)
   Min. 1st Qu.  Median    Mean 3rd Qu.    Max.    NA's 
   0.00   60.00   70.00   74.55   96.25  100.00     266 
> boxplot(nes$welfareppl, col="orange")
> boxplot(nes$poorppl, col="green")
> 
> install.packages("car")
Installing package(s) into C:/Users/Meyonna/Documents/R/win-library/2.15
(as lib is unspecified)
--- Please select a CRAN mirror for use in this session ---
trying URL 'http://lib.stat.cmu.edu/R/CRAN/bin/windows/contrib/2.15/car_2.0-14.zip'
Content type 'application/zip' length 1047913 bytes (1023 Kb)
opened URL
downloaded 1023 Kb

package car successfully unpacked and MD5 sums checked

The downloaded binary packages are in
        C:\Users\Meyonna\AppData\Local\Temp\Rtmpy4YaId\downloaded_packages
> library(car)
Loading required package: MASS
Loading required package: nnet
> scatterplot(nes$welfareppl, nes$poorppl)
> save.image("C:\\r documentation\\R on WP V PP")
> save.image("C:\\r documentation\\wp pp")
> 
